f341dac68a5c47049431b5e857e710c6b0d985e0,uitest/src/com/vaadin/tests/push/PushConfigurationLongPollingTest.java,PushConfigurationLongPollingTest,testLongPolling,#,30

Before Change


    public void testLongPolling() throws InterruptedException {
        openDebugLogTab();

        new Select(getTransportSelect()).selectByVisibleText("LONG_POLLING");
        assertThat(getStatusText(),
                containsString("fallbackTransport: long-polling"));
        assertThat(getStatusText(), containsString("transport: long-polling"));

After Change


    public void testLongPolling() throws InterruptedException {
        openDebugLogTab();

        getTransportSelect().selectByText("Long polling");
        assertThat(getStatusText(),
                containsString("fallbackTransport: long-polling"));
        assertThat(getStatusText(), containsString("transport: long-polling"));